Overload | Description |
---|---|
NList<T> Constructor() | Creates an empty list |
NList<T> Constructor(Int32) | Creates a new list with the specified initial capacity |
NList<T> Constructor(INSet<T>) | Creates a new list that holds the items of the specified set. |
NList<T> Constructor(INIterator<T>) | Creates a new list that holds the remaining items of the specified iterator. |
NList<T> Constructor(Int32,INIterator<T>) | Creates a new list with the specified initial capacity, that holds the remaining items of the specified iterator. |
NList<T> Constructor(T[]) | Creates a new list that holds the items of the specified array. Copies the content of the passed array. |
NList<T> Constructor(T[],Int32) | Creates a new list that holds the first items of the specified items array. Copies the content of the passed array. |